home *** CD-ROM | disk | FTP | other *** search
- unit UBack;
-
- interface
-
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- Tempunit, StdCtrls, ExtCtrls, ComCtrls, Buttons, OleCtrls, CELLLib_TLB;
-
- type
- TFBack = class(TTemplate)
- RadioGroup1: TRadioGroup;
- procedure RadioGroup1Click(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- FBack: TFBack;
-
- implementation
-
- {$R *.DFM}
-
- procedure TFBack.RadioGroup1Click(Sender: TObject);
- begin
- inherited;
- case RadioGroup1.ItemIndex of
- 0 : Cell1.DoSetBackGround(0);
- 1 : Cell1.DoSetBackGround(1);
- 2 : Cell1.DoSetBackGround(2);
- 3 : Cell1.DoSetBackGround(3);
- 4 : Cell1.DoSetBackGround(4);
- end;
- end;
-
- end.
-